home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
GRAPHICS
/
TS32
/
DEMO.ZIP
/
Project1.dpr
next >
Wrap
Text File
|
1996-03-21
|
194b
|
14 lines
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {frmMain};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.